diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-07-01 10:10:23 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-07-01 10:10:23 -0700 |
| commit | fdebd69904e3b225dde1182de2fe9938344abbf2 (patch) | |
| tree | 9862990fcc68323a5366ef2e058d218ede49a04b /middleware/src/app/[gameName]/page.tsx | |
| parent | fdbf92c95c5355136c38e958f6add37a8d242aa7 (diff) | |
add not-found page
Diffstat (limited to 'middleware/src/app/[gameName]/page.tsx')
| -rw-r--r-- | middleware/src/app/[gameName]/page.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/middleware/src/app/[gameName]/page.tsx b/middleware/src/app/[gameName]/page.tsx index 76d883b..d4e7b51 100644 --- a/middleware/src/app/[gameName]/page.tsx +++ b/middleware/src/app/[gameName]/page.tsx @@ -89,7 +89,7 @@ export default async function GamePage({ } const redirectUrl = - postId && mainNewsUrl ? `${mainNewsUrl}/game/${gameName}#${postId}` : null; + postId && mainNewsUrl ? `${mainNewsUrl}/game/${gameName}#${postId}` : mainNewsUrl; return ( <main className="main"> |
